code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/client/src/styles/styles.scss b/client/src/styles/styles.scss @@ -65,7 +65,7 @@ body{
}
.container{
- padding: 70px 15px 70px 15px;
+ padding: 15px 15px 15px 15px;
margin-left: auto;
margin-right: auto;
@@ -371,6 +371,8 @@ header.menu{
}
.homePage.container{
+ padding-top: 70px;
+ padding-bottom: 70px;
.ti... | 12 |
diff --git a/lib/core/service_layer/api_error_handler.rb b/lib/core/service_layer/api_error_handler.rb @@ -3,10 +3,13 @@ module Core
class ApiErrorHandler
def self.get_api_error_messages(error)
+
if error.respond_to?(:response_data) and error.response_data
+ puts error.response_data
return read_error_messages(error.res... | 9 |
diff --git a/contribs/gmf/less/desktop.less b/contribs/gmf/less/desktop.less @@ -211,6 +211,9 @@ gmf-search {
gmf-themeselector {
width: 1.5 * @left-panel-width;
+ max-height: 1.5 * @left-panel-width;
+ overflow: hidden;
+ overflow-y: auto;
}
gmf-backgroundlayerselector {
width: 25rem;
| 12 |
diff --git a/test/server/cards/04.6-EU/AgashaShunsen.spec.js b/test/server/cards/04.6-EU/AgashaShunsen.spec.js @@ -33,10 +33,6 @@ describe('Agasha Shunsen', function () {
this.player1.clickCard('agasha-shunsen');
this.player1.clickPrompt('Cancel');
expect(this.player1).toHavePrompt('Conflict Action Window');
- this.pla... | 2 |
diff --git a/src/components/ReportActionItem/RenameAction.js b/src/components/ReportActionItem/RenameAction.js @@ -13,7 +13,7 @@ const propTypes = {
...withLocalizePropTypes,
};
-const AnnounceAction = (props) => {
+const RenameAction = (props) => {
const displayName = lodashGet(props.action, ['message', 0, 'text']);
c... | 10 |
diff --git a/packages/cli/test/scripts/update.test.js b/packages/cli/test/scripts/update.test.js @@ -476,7 +476,7 @@ describe('update script', function() {
implementation: this.withLibraryImplV2Address,
});
});
- });
+ }).timeout(5000);
};
const shouldHandleUpdateOnDependency = function() {
@@ -613,7 +613,7 @@ describe... | 0 |
diff --git a/lib/plugins/platform/platform.js b/lib/plugins/platform/platform.js @@ -199,7 +199,7 @@ class Platform {
function: this.serverless.service.getFunction(fn).name,
type: event.type,
app: this.data.app,
- service: this.data.service,
+ service: this.data.service.name,
stage: this.serverless.service.provider.sta... | 1 |
diff --git a/src/Output.js b/src/Output.js @@ -241,10 +241,25 @@ export class Output extends EventEmitter {
* @returns {Output} Returns the `Output` object so methods can be chained.
*/
send(status, data = [], options= {}) {
+
+ /* START.VALIDATION */
if (!Array.isArray(data)) data = [data];
- if (typeof options === "n... | 7 |
diff --git a/src/libs/KeyboardShortcut/index.js b/src/libs/KeyboardShortcut/index.js @@ -3,7 +3,7 @@ import lodashGet from 'lodash/get';
import getOperatingSystem from '../getOperatingSystem';
import CONST from '../../CONST';
-const events = {};
+const eventHandlers = {};
const keyboardShortcutMap = {};
/**
@@ -20,11 +... | 10 |
diff --git a/client/src/components/views/ComputerCore/style.scss b/client/src/components/views/ComputerCore/style.scss .list-group {
.list-group-item {
&.selected {
- background-color: rgba(255, 255, 255, 0.5);
+ background-color: rgba(255, 255, 255, 0.3);
+ font-weight: 800;
}
}
}
max-height: 60vh;
overflow-y: auto;
t... | 1 |
diff --git a/core/server/api/v3/pages-public.js b/core/server/api/v3/pages-public.js -const i18n = require('../../../shared/i18n');
+const tpl = require('@tryghost/tpl');
const errors = require('@tryghost/errors');
const models = require('../../models');
const ALLOWED_INCLUDES = ['tags', 'authors'];
+const messages = {... | 14 |
diff --git a/src/LambdaContext.js b/src/LambdaContext.js @@ -36,6 +36,7 @@ module.exports = class LambdaContext extends EventEmitter {
// properties
awsRequestId,
+ callbackWaitsForEmptyEventLoop: true,
clientContext: {},
functionName: lambdaName,
functionVersion: `offline_functionVersion_for_${lambdaName}`,
| 0 |
diff --git a/packages/app/src/components/Common/Dropdown/PageItemControl.tsx b/packages/app/src/components/Common/Dropdown/PageItemControl.tsx @@ -135,19 +135,21 @@ const PageItemControlDropdownMenu = React.memo((props: DropdownMenuProps): JSX.E
type PageItemControlSubstanceProps = CommonProps & {
pageId: string,
- fet... | 7 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,13 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.29.2] -- 2017-07-26
+
+### Fixed
+- Add fallback for `ArrayBuffer.isView` fixing gl2d and gl3d rendering
+ in environments that don't... | 3 |
diff --git a/lib/components/helpers/tag-translator.js b/lib/components/helpers/tag-translator.js @@ -5,7 +5,7 @@ const buildChoicesMap = (replaceChoices) => {
var choices = {};
replaceChoices.forEach(function(choice) {
var key = choice.value;
- choices[key] = choice.label;
+ choices[key] = choice.tagLabel || choice.lab... | 11 |
diff --git a/vaadin-date-picker-overlay.html b/vaadin-date-picker-overlay.html @@ -460,9 +460,13 @@ This program is available under Apache License Version 2.0, available at https:/
announce.push(this.i18n.week);
announce.push(Vaadin.DatePickerHelper._getISOWeekNumber(focusedDate));
}
- var e = new Event('iron-announce'... | 14 |
diff --git a/docs/source/tutorial/local-state.mdx b/docs/source/tutorial/local-state.mdx @@ -235,6 +235,11 @@ Next, specify a client resolver on the `Launch` type to tell Apollo Client how t
<MultiCodeBlock>
```tsx:title=src/resolvers.tsx
+// previous imports
+import { GET_CART_ITEMS } from './pages/cart';
+
+// type d... | 7 |
diff --git a/includes/Core/Assets/Assets.php b/includes/Core/Assets/Assets.php namespace Google\Site_Kit\Core\Assets;
use Google\Site_Kit\Context;
-use Google\Site_Kit\Core\Modules\Modules;
use Google\Site_Kit\Core\Permissions\Permissions;
-use Google\Site_Kit\Core\Storage\Cache;
use Google\Site_Kit\Core\Util\BC_Functi... | 2 |
diff --git a/src/assets/url-builder.njk b/src/assets/url-builder.njk @@ -102,7 +102,7 @@ oLayoutStyle: "o-layout--query"
<div id="{{item.name}}-tooltip-element" data-o-component="o-tooltip" data-o-tooltip-position="right" data-o-tooltip-target="{{item.name}}-tooltip-target" data-o-tooltip-toggle-on-click="true">
<div c... | 1 |
diff --git a/samples/csharp_dotnetcore/02.echo-with-counter/Startup.cs b/samples/csharp_dotnetcore/02.echo-with-counter/Startup.cs // Licensed under the MIT License.
using System;
+using System.IO;
using System.Linq;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
@@ -62,7 +63,10 @@ public void ... | 0 |
diff --git a/test/jasmine/tests/animate_test.js b/test/jasmine/tests/animate_test.js @@ -840,6 +840,24 @@ describe('animating scatter traces', function() {
});
it('should animate axis ranges using the less number of steps', function(done) {
+ // sanity-check that scatter points and bars are still there
+ function _asse... | 7 |
diff --git a/karma.conf.js b/karma.conf.js @@ -10,6 +10,11 @@ module.exports = function (config) {
browserName: 'chrome',
version: '49'
},
+ sl_safari_8: {
+ base: 'SauceLabs',
+ browserName: 'safari',
+ version: '8'
+ },
sl_chrome_latest: {
base: 'SauceLabs',
browserName: 'chrome',
| 0 |
diff --git a/scss/layout/_navbar.scss b/scss/layout/_navbar.scss @@ -54,7 +54,7 @@ $siimple-navbar-subtitle-padding-left: 15px;
top: $siimple-navbar-padding-top;
bottom: $siimple-navbar-padding-bottom;
}
- vertical-align: middle;
+ //vertical-align: middle;
@include siimple-size();
| 1 |
diff --git a/src/styles/interactive-video.css b/src/styles/interactive-video.css .h5p-interactive-video .h5p-bookmark {
position: absolute;
top: -14px;
- width: 1px;
+ width: 0.042em;
height: 36px;
background: unset;
border-color: #a2a2a2;
.h5p-interactive-video .h5p-endscreen {
position: absolute;
top: -14px;
- width:... | 0 |
diff --git a/src/technologies/h.json b/src/technologies/h.json ],
"description": "HighStore is an ecommerce platform from Iran.",
"meta": {
- "generator": "^HighStore.IR$",
- "hs:version": "^([\\d\\.]+)$\\;version:\\1"
+ "generator": "^HighStore\\.IR$",
+ "hs:version": "^([\\d\\.]+)$\\;version:\\1\\;confidence:50"
},
"... | 7 |
diff --git a/package.json b/package.json "karma-webpack": "^2.0.3",
"main-bower-files": "~2.11.1",
"mversion": "^1.10.1",
+ "react-bootstrap": "^0.31.0",
"reactcss": "^1.2.2",
"slugid": "^1.1.0",
"style-loader": "^0.13.2",
]
}
},
+ "peerDependencies": {
+ "react": "^0.14.3 || ^15.0.0",
+ "react-dom": "^0.14.3 || ^15.0.... | 2 |
diff --git a/lib/node_modules/@stdlib/repl/ctor/lib/set_aliases_global.js b/lib/node_modules/@stdlib/repl/ctor/lib/set_aliases_global.js var logger = require( 'debug' );
var hasOwnProp = require( '@stdlib/assert/has-own-property' );
-var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
-var setMemoiz... | 12 |
diff --git a/src/main.js b/src/main.js @@ -33,13 +33,13 @@ function gltf_rv(canvasId, index, headless = false, onRendererReady = undefined)
function getWebGlContext()
{
const parameters = { alpha: false, antialias: true };
- const type = [ "webgl", "experimental-webgl" ];
+ const contextTypes = [ "webgl", "experimental... | 10 |
diff --git a/js/core/bis_bidsutils.js b/js/core/bis_bidsutils.js @@ -147,11 +147,12 @@ let dicom2BIDS = async function (opts) {
let formattedSuppfile = makeBIDSFilename(suppBasename, dirbasename);
let suppTarget = bis_genericio.joinFilenames(dirname, formattedSuppfile);
-
+ if (!formattedSuppfile.includes('DISCARD')) {... | 1 |
diff --git a/tests/e2e/global-setup.js b/tests/e2e/global-setup.js @@ -2,9 +2,7 @@ const jsdom = require("jsdom");
exports.startApplication = function (configFilename, exec) {
jest.resetModules();
- if (global.app) {
- global.app.stop();
- }
+ this.stopApplication();
// Set config sample for use in test
if (configFilen... | 7 |
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -5,7 +5,7 @@ defaults: &defaults
docker:
- image: circleci/node:7.10
jobs:
- setup:
+ build:
<<: *defaults
steps:
- checkout
@@ -50,10 +50,10 @@ jobs:
workflows:
microcosm:
jobs:
- - setup
+ - build
- audit:
- requires: [setup]
+ requires: [build]
- test-dev:
... | 10 |
diff --git a/magefile.go b/magefile.go @@ -30,18 +30,22 @@ const (
hugoVersion = "0.52"
)
+func xplatPath(pathParts ...string) string {
+ return filepath.Join(pathParts...)
+}
+
var (
ignoreSubdirectoryPaths = []string{
- ".vendor",
- ".sparta",
- ".vscode",
- "resources/describe",
- "docs_source/themes/",
+ xplatPath(... | 0 |
diff --git a/app/shared/components/TabMenu.js b/app/shared/components/TabMenu.js @@ -98,17 +98,13 @@ class TabMenu extends Component<Props> {
{(connection && connection.chain)
? (
<Menu.Item
- name="about"
- position="right"
- active={activeItem === 'about'}
- onClick={handleItemClick}
+ name="blockchain"
>
- <span>
- ... | 1 |
diff --git a/app/models/observation.rb b/app/models/observation.rb @@ -2021,22 +2021,22 @@ class Observation < ActiveRecord::Base
precision = 10**5.0
range = ((-1 * precision)..precision)
half_cell = COORDINATE_UNCERTAINTY_CELL_SIZE / 2
- base_lat, base_lon = uncertainty_cell_southwest_latlon( lat, lon )
- [ base_lat +... | 10 |
diff --git a/kitty-items-js/src/index.ts b/kitty-items-js/src/index.ts @@ -64,8 +64,9 @@ async function run() {
marketService
);
- app.listen(3000, () => {
- console.log("Listening on port 3000!");
+ const port = process.env.PORT || 3000;
+ app.listen(port, () => {
+ console.log(`Listening on port ${port}!`);
});
}
| 0 |
diff --git a/autoButtons/autoButtons.js b/autoButtons/autoButtons.js @@ -34,7 +34,7 @@ const autoButtons = (() => { // eslint-disable-line no-unused-vars
// 0.6.x => 0.8.0 Setting additions
imageIcons: {
type: 'boolean',
- default: false,
+ default: true,
name: `Image Icons`,
description: `Render default icons as image... | 3 |
diff --git a/CHANGELOG.md b/CHANGELOG.md +## Version 3.0.0
+**Features**
+* Added ability to sort on any field where an endpoint returns an array - #129
+* Added array of links to official SpaceX flickr photos for rockets, dragon capsules, launches, and the tesla roadster
+* Added `tentative_max_precision` field for mo... | 3 |
diff --git a/protocols/peer/contracts/Peer.sol b/protocols/peer/contracts/Peer.sol @@ -254,6 +254,11 @@ contract Peer is IPeer, Ownable {
// Perform the swap.
swapContract.swap(_order);
+ }
+ function setTradeWallet(address _newTradeWallet) external onlyOwner {
+ require(_newTradeWallet != address(0), 'TRADE_WALLET_REQ... | 12 |
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:windowSoftInputMode="adjustResize"
- android:launchMode="singleTask">
+ android:launchMode="singleTask"
... | 12 |
diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js @@ -522,6 +522,7 @@ var determine_basal = function determine_basal(glucose_status, currenttemp, iob_
rT.reason += "BG " + convert_bg(bg, profile) + "<" + convert_bg(threshold, profile) + "; ";
if ((glucose_status.delta <= 0 && ... | 4 |
diff --git a/front/src/actions/login/loginGateway.js b/front/src/actions/login/loginGateway.js @@ -80,10 +80,17 @@ function createActions(store) {
route('/link-gateway-user');
}
} catch (e) {
+ const error = get(e, 'response.error');
+ // if user was previously linked to another instance, we reset the user id
+ if (err... | 9 |
diff --git a/src/electron/ipc-api/browserViewManager.ts b/src/electron/ipc-api/browserViewManager.ts @@ -37,10 +37,10 @@ const mockTodosService = ({ isActive = false }: { isActive?: boolean }): IIPCSer
const todosRecipe = loadRecipeConfig(TODOS_RECIPE_ID);
return {
- id: 'franz-todos',
+ id: TODOS_RECIPE_ID,
name: 'Fra... | 14 |
diff --git a/examples/kml/kml.js b/examples/kml/kml.js const osm = new og.layer.XYZ('osm', { isBaseLayer: true, url: '//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png' });
const globus = new og.Globe({ target: 'globus', terrain: new og.terrain.GlobusTerrain(), layers: [osm] });
const billboard = { src: './carrot.png', colo... | 4 |
diff --git a/app/components/Contacts/Network.scss b/app/components/Contacts/Network.scss }
.channels {
- padding: 20px;
- height: 100%;
+ padding: 20px 0px 20px 20px;
overflow-y: auto;
.listHeader {
flex-direction: row;
justify-content: space-between;
align-items: baseline;
+ padding-right: 20px;
h2, h2 span {
color: $... | 1 |
diff --git a/src/base/index.js b/src/base/index.js @@ -76,6 +76,7 @@ class BaseCommand extends Command {
}
async authenticate(authToken) {
+ const webUI = process.env.NETLIFY_WEB_UI || 'https://app.netlify.com'
const token = authToken || this.configToken
if (token) {
// Update the api client
@@ -93,7 +94,7 @@ class Bas... | 11 |
diff --git a/elasticdump.js b/elasticdump.js @@ -175,7 +175,9 @@ class elasticdump extends EventEmitter {
})
if (data.length === 0) {
- return queue.onIdle().then(() => resolve(totalWrites))
+ return queue.onIdle()
+ .then(() => resolve(totalWrites))
+ .catch(reject)
} else {
return queue.add(() => overlappedIoPromise)... | 9 |
diff --git a/jazz_deployments/index.js b/jazz_deployments/index.js @@ -550,7 +550,7 @@ function buildNowRequest (serviceDetails, config, refDeployment) {
});
}
-const factory = {
+const exportable = {
handler,
genericInputValidation,
processDeploymentCreation,
@@ -572,4 +572,4 @@ const factory = {
buildNowRequest
}
-mo... | 10 |
diff --git a/src/libs/ValidationUtils.js b/src/libs/ValidationUtils.js @@ -90,9 +90,10 @@ function isValidExpirationDate(string) {
return false;
}
- // Use the first of the month to check if the expiration date is in the future or not
+
+ // Use the last of the month to check if the expiration date is in the future or ... | 4 |
diff --git a/lib/assets/core/javascripts/cartodb3/data/data-observatory/regions-collection.js b/lib/assets/core/javascripts/cartodb3/data/data-observatory/regions-collection.js var BaseCollection = require('./data-observatory-base-collection');
var BaseModel = require('../../components/custom-list/custom-list-item-mode... | 2 |
diff --git a/src/client/components/composer/NewRequest/GRPCAutoInputForm.jsx b/src/client/components/composer/NewRequest/GRPCAutoInputForm.jsx @@ -86,7 +86,6 @@ class GRPCAutoInputForm extends Component {
this.toggleShow = this.toggleShow.bind(this);
this.setService = this.setService.bind(this);
this.setRequest = this.... | 1 |
diff --git a/js/options.js b/js/options.js @@ -290,9 +290,14 @@ objBrowser.runtime.onMessage.addListener(
case 'neutral' :
default :
chrome.browserAction.setIcon({
- path: "images/ether-128x128-black_badge.png",
+ path: "images/ether-128x128.png",
tabId: sender.tab.id
});
+
+ chrome.browserAction.setTitle({
+ title: "E... | 12 |
diff --git a/src/web/widgets/Laser/index.styl b/src/web/widgets/Laser/index.styl border: 1px solid #ccc;
text-align: right;
padding: 5px 10px;
+ height: 32px;
font-size: 18px;
font-weight: bold;
margin-right: 5px;
| 12 |
diff --git a/includes/Core/Assets/Assets.php b/includes/Core/Assets/Assets.php @@ -440,7 +440,7 @@ final class Assets {
new Script(
'googlesitekit-admin',
array(
- 'src' => $base_url . 'js/googlesitekit-admin.js',
+ 'version' => null,
'dependencies' => array( 'googlesitekit-apifetch-data', 'googlesitekit-admin-data' ),... | 2 |
diff --git a/generators/client/templates/angular/src/main/webapp/app/layouts/error/error.component.ts.ejs b/generators/client/templates/angular/src/main/webapp/app/layouts/error/error.component.ts.ejs @@ -57,7 +57,10 @@ export class ErrorComponent implements OnInit<% if (enableTranslation) { %>, OnD
<%_ if (enableTrans... | 1 |
diff --git a/packages/storybook/jest.config.js b/packages/storybook/jest.config.js @@ -7,5 +7,6 @@ module.exports = {
rootDir: "../../",
setupFiles: ["raf/polyfill"],
setupTestFrameworkScriptFile: "<rootDir>/packages/storybook/support/jest/setupTests.js",
+ testPathIgnorePatterns: ["<rootDir>/packages/vanilla"],
unmock... | 8 |
diff --git a/server/views/topics/apicache.py b/server/views/topics/apicache.py @@ -32,11 +32,11 @@ def topic_media_list(user_mc_key, topics_id, **kwargs):
'link_id': request.args.get('linkId'),
}
merged_args.update(kwargs) # passed in args override anything pulled form the request.args
- return _cached_topic_media_list... | 10 |
diff --git a/aura-impl/src/main/resources/aura/component/InteropComponent.js b/aura-impl/src/main/resources/aura/component/InteropComponent.js @@ -373,6 +373,11 @@ InteropComponent.prototype.setGlobalAttribute = function (element, attrName, val
* @export
*/
InteropComponent.prototype.get = function (key) {
+ if(!$A.uti... | 5 |
diff --git a/src/components/api-request.js b/src/components/api-request.js @@ -128,6 +128,19 @@ export default class ApiRequest extends LitElement {
cursor:pointer;
}
+ .v-tab-btn {
+ height:24px;
+ border:none;
+ background:none;
+ opacity: 0.3;
+ cursor: pointer;
+ }
+ .v-tab-btn.active {
+ font-weight:bold;
+ backgr... | 7 |
diff --git a/.travis.yml b/.travis.yml @@ -44,7 +44,7 @@ before_install:
fi
- |
if [[ "$PHP" == "1" ]] || [[ "$E2E" == "1" ]] || [[ "$SNIFF" == "1" ]]; then
- docker run --rm -v "$PWD:/app" -v "$HOME/.cache/composer:/tmp/cache" composer:2 install
+ docker run --rm -v "$PWD:/app" -v "$HOME/.cache/composer:/tmp/cache" co... | 2 |
diff --git a/blocks/procedures.js b/blocks/procedures.js @@ -131,7 +131,6 @@ Blockly.Blocks['procedures_defnoreturn'] = {
var parameter = document.createElement('arg');
var argModel = this.argumentVarModels_[i];
parameter.setAttribute('name', argModel.name);
- parameter.setAttribute('varId', argModel.getId());
paramete... | 2 |
diff --git a/Dockerfile b/Dockerfile @@ -54,6 +54,10 @@ LABEL maintainer="Reaction Commerce <engineering@reactioncommerce.com>" \
com.reactioncommerce.docker.git.sha1=$GIT_SHA1 \
com.reactioncommerce.docker.license=$LICENSE
+# apk list bash curl less vim | cut -d " " -f 1 | sed 's/-/=/' | xargs
+RUN apk --no-cache add ... | 2 |
diff --git a/src/cli/commands-cn/run.js b/src/cli/commands-cn/run.js @@ -40,8 +40,6 @@ module.exports = async (config, cli, command) => {
// Start CLI persistance status
cli.sessionStart('Initializing', { timer: true });
- await utils.login();
-
// Load YAML
let instanceDir = process.cwd();
if (config.target) {
@@ -49,... | 7 |
diff --git a/src/server/views/layout/layout.html b/src/server/views/layout/layout.html <div id="wrapper">
{% block layout_head_nav %}
- {% set appVersion = window.navigator.appVersion.toLowerCase() %}
- <nav id="grw-navbar" class="navbar grw-navbar sticky-top grw-navbar-for-old-ios navbar-expand navbar-dark mb-0 px-0">... | 13 |
diff --git a/src/core/core.controller.js b/src/core/core.controller.js @@ -1133,7 +1133,7 @@ class Chart {
// Invoke onHover hook
callCallback(options.onHover || options.hover.onHover, [e, active, me], me);
- if (e.type === 'mouseup' || e.type === 'click') {
+ if (e.type === 'mouseup' || e.type === 'click' || e.type ==... | 11 |
diff --git a/web-monetization.js b/web-monetization.js @@ -26,7 +26,7 @@ setInterval(() => {
document.monetization.addEventListener('monetizationprogress', function monetizationProgress (e) {
const current = pointers[currentIndex];
const currentMonetizationPointer = encodeURIComponent(current.monetizationPointer);
- co... | 0 |
diff --git a/src/components/DateRangePicker.js b/src/components/DateRangePicker.js @@ -482,6 +482,7 @@ const DateRangePicker = React.createClass({
position: 'absolute',
left: this.props.isRelative ? 'auto' : 0,
right: 0,
+ width: window.innerWidth < 450 && '100%',
zIndex: 10
},
calendarWrapper: {
@@ -581,7 +582,7 @@ co... | 12 |
diff --git a/views/recipes.blade.php b/views/recipes.blade.php <h5 class="card-title mb-1">{{ $recipe->name }}</h5>
<p class="card-text">
@if(FindObjectInArrayByPropertyValue($recipesResolved, 'recipe_id', $recipe->id)->need_fulfilled == 1)<i class="fas fa-check text-success"></i>@elseif(FindObjectInArrayByPropertyValu... | 1 |
diff --git a/src/runtime/audience-action-flow.js b/src/runtime/audience-action-flow.js import {ActivityIframeView} from '../ui/activity-iframe-view';
import {
AlreadySubscribedResponse,
+ CompleteAudienceActionResponse,
EntitlementsResponse,
} from '../proto/api_messages';
import {AutoPromptType} from '../api/basic-sub... | 9 |
diff --git a/physics-manager.js b/physics-manager.js @@ -195,6 +195,9 @@ physicsManager.enableGeometryQueries = physicsObject => {
physicsManager.removeGeometry = physicsObject => {
physx.physxWorker.removeGeometryPhysics(physx.physics, physicsObject.physicsId);
};
+physicsManager.getVelocity = (physicsObject, velocity... | 0 |
diff --git a/src/client/js/components/Admin/SlackIntegration/OfficialBotSettings.jsx b/src/client/js/components/Admin/SlackIntegration/OfficialBotSettings.jsx @@ -52,7 +52,7 @@ const OfficialBotSettings = (props) => {
}
};
- const generateTokenHandler = async(tokenGtoP, tokenPtoG) => {
+ const regenerateTokensHandler =... | 10 |
diff --git a/src/api-gateway-websocket/WebSocketServer.js b/src/api-gateway-websocket/WebSocketServer.js import { Server } from 'ws'
import debugLog from '../debugLog.js'
-import LambdaFunctionPool from '../lambda/index.js'
import serverlessLog from '../serverlessLog.js'
import { createUniqueId } from '../utils/index.j... | 2 |
diff --git a/packages/openneuro-app/src/scripts/search/search-results.tsx b/packages/openneuro-app/src/scripts/search/search-results.tsx @@ -99,7 +99,7 @@ const SearchResultsQuery = (): React.SFC => {
variables: {
q: query,
},
- errorPolicy: 'all',
+ errorPolicy: 'ignore',
}),
)
}
| 8 |
diff --git a/src/utils/gh-auth.js b/src/utils/gh-auth.js @@ -76,7 +76,8 @@ async function getGitHubToken(opts) {
server.listen(port, resolve)
})
- const url = 'http://localhost:8080/cli?' + querystring.encode({
+ const webUI = process.env.NETLIFY_WEB_UI || 'https://app.netlify.com'
+ const url = webUI + '/cli?' + query... | 11 |
diff --git a/src/compiler/grammar.imba1 b/src/compiler/grammar.imba1 @@ -190,6 +190,7 @@ var grammar =
o 'ImportSpecifierList , ImportSpecifier' do A1.add(A3)
o 'ImportSpecifierList OptComma TERMINATOR ImportSpecifier' do A1.add A4
o 'INDENT ImportSpecifierList OptComma OUTDENT' do A2
+ o 'INDENT ImportSpecifierList Op... | 11 |
diff --git a/lib/bal/api.js b/lib/bal/api.js -import HttpError from '../http-error'
-
export const BACKEND_URL = process.env.NEXT_PUBLIC_BACKEND_URL || 'https://backend.adresse.data.gouv.fr'
async function _fetch(url, method, body) {
@@ -19,7 +17,8 @@ async function _fetch(url, method, body) {
const contentType = respo... | 9 |
diff --git a/src/vaadin-grid-detailed-event-mixin.html b/src/vaadin-grid-detailed-event-mixin.html @@ -26,18 +26,38 @@ This program is available under Apache License Version 2.0, available at https:/
* to `detailedEvents`, you should listen for `detailed-click` events.
*/
detailedEvents: {
- type: Array,
- observer: '_... | 9 |
diff --git a/data.js b/data.js @@ -234,6 +234,14 @@ module.exports = [
url: "http://AtSpy.github.io",
source: "https://raw.githubusercontent.com/AtSpy/AtSpy/master/dist/atspy.js"
},
+ {
+ name: "FrontExpress",
+ github: "camelaissani/frontexpress",
+ tags: ["frontexpress", "router", "routing", "express", "spa", "framew... | 0 |
diff --git a/src/app/Sidebar.js b/src/app/Sidebar.js @@ -20,6 +20,7 @@ import './Sidebar.scss';
state => ({
app: state.app,
auth: state.auth,
+ user: state.user,
messages: state.messages,
favorites: state.favorites,
}),
@@ -34,12 +35,9 @@ export default class Sidebar extends Component {
this.state = {
isFetching: true,... | 4 |
diff --git a/examples/py/coinone-markets.py b/examples/py/coinone-markets.py @@ -10,7 +10,7 @@ sys.path.append(root + '/python')
import ccxt # noqa: E402
exchange = ccxt.coinone({
- 'enableRateLimit': true,
+ 'enableRateLimit': True,
# 'verbose': True, # uncomment for verbose output
})
| 1 |
diff --git a/source/Renderer/shaders/pbr.frag b/source/Renderer/shaders/pbr.frag @@ -49,7 +49,7 @@ uniform float u_ClearcoatRoughnessFactor;
// Specular
uniform vec3 u_SpecularColorFactor;
-uniform float u_SpecularFactor;
+uniform float u_SpecularFactor2;
// Transmission
uniform float u_TransmissionFactor;
@@ -254,7 +2... | 10 |
diff --git a/tasks/partial_bundle.js b/tasks/partial_bundle.js @@ -36,6 +36,10 @@ function isFalse(a) {
);
}
+function inputBoolean(a, dflt) {
+ return !a ? dflt : !isFalse(a);
+}
+
function inputArray(a, dflt) {
dflt = dflt.slice();
@@ -52,6 +56,7 @@ if(process.argv.length > 2) {
var args = minimist(process.argv.slice... | 0 |
diff --git a/.travis.yml b/.travis.yml @@ -5,12 +5,16 @@ os:
- osx
- windows
+# https://github.com/nodejs/Release#nodejs-release-working-group
node_js:
- - node
- - '8'
- - '6'
+ - 8
+ - 10
+ - 11 # node WG EOL 2019-06-01, AWS deprecation:
+ - 12
+
script:
- npm run lint
- npm test
+
notifications:
email: false
| 0 |
diff --git a/src/kiri-mode/cam/client.js b/src/kiri-mode/cam/client.js @@ -25,7 +25,6 @@ let isAnimate,
current,
currentIndex,
flipping,
- poppedRecOld,
poppedRec,
hoveredOp,
API, FDM, SPACE, STACKS, MODES, VIEWS, UI, UC, LANG, MCAM;
@@ -472,11 +471,10 @@ CAM.init = function(kiri, api) {
if (pos >= 0) {
el.removeChild(... | 13 |
diff --git a/FAQ.md b/FAQ.md @@ -416,7 +416,7 @@ See the [contributing guide][contributing-guide].
<!-- </faq-questions> -->
-<!-- <links> -->
+<!-- <definitions> -->
[dom]: https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model
[canvas]: https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API
@@ -5... | 10 |
diff --git a/accessibility-checker-engine/help/IBMA_Color_Contrast_WCAG2AA_PV.mdx b/accessibility-checker-engine/help/IBMA_Color_Contrast_WCAG2AA_PV.mdx @@ -16,7 +16,7 @@ import { CodeSnippet, Tag } from "carbon-components-react";
## Why is this important?
-When text and its background colors have less than a 4.5 to 1 ... | 2 |
diff --git a/api/parser.go b/api/parser.go @@ -312,7 +312,9 @@ func extractHrefs(child *Element) (h Href) {
}
for _, content := range contents {
+ kind := content.Path("meta.title").String()
value := content.Path("content.value.content").String()
+ members := []string{}
if content.Path("content.value.element").String()... | 9 |
diff --git a/config/bisweb_pathconfig.js b/config/bisweb_pathconfig.js @@ -29,12 +29,10 @@ let ok=false;
if (major === 10 && minor >= 11) {
ok=true;
-} else if (major === 12 && minor >= 2 ) {
- ok=true;
-} else if (major === 14 && minor >= 2 ) {
+} else if (major > 12) {
ok=true;
} else {
- console.log(`----\n---- You ... | 3 |
diff --git a/theme/apps/dictionary/scripts/dictionary.js b/theme/apps/dictionary/scripts/dictionary.js {
enum: unfilteredDict.properties[key].enum.filter(
en => !(unfilteredDict.properties[key].deprecated_enum || [])
- .includes(en)
+ .map(dEn => dEn.toLowerCase())
+ .includes(en.toLowerCase())
)
} : {}
)}),
| 13 |
diff --git a/src/h.coffee b/src/h.coffee @@ -233,11 +233,11 @@ class Helpers
""
"o"
]))[1]
- dom = ("WebKit|Moz|MS|O").match(new RegExp("(" + pre + ")", "i"))[1]
+ dom = ("WebKit|Moz|MS|O").match(new RegExp("(" + pre + ")", "i"))?[1]
dom: dom
lowercase: pre
css: "-" + pre + "-"
- js: pre[0].toUpperCase() + pre.substr(1... | 1 |
diff --git a/README.md b/README.md @@ -70,7 +70,7 @@ Move to [awesome-docsify](https://github.com/docsifyjs/awesome-docsify#showcase)
### Online one-click setup for Contributing
-You can use Gitpod(A free online VS Code-like IDE) for contributing. With single click it'll launch a workspace and automatically:
+You can u... | 7 |
diff --git a/src/traces/parcats/calc.js b/src/traces/parcats/calc.js @@ -103,7 +103,7 @@ module.exports = function calc(gd, trace) {
var value;
if(!line) {
value = parcatConstants.defaultColor;
- } else if(Array.isArray(line.color)) {
+ } else if(Lib.isArrayOrTypedArray(line.color)) {
value = line.color[index % line.co... | 9 |
diff --git a/src/Item.js b/src/Item.js @@ -83,9 +83,16 @@ class Item extends EventEmitter {
if (typeof this.area === 'string') {
this.area = state.AreaManager.getArea(this.area);
}
+
+ if (Array.isArray(this.inventory)) {
+ if (!this.inventory.length) {
+ this.inventory = null;
+ }
+
// TODO: repopulate any stored item... | 1 |
diff --git a/token-metadata/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA/metadata.json b/token-metadata/0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA/metadata.json "symbol": "PGOLD",
"address": "0xF02DAB52205aFf6Bb3d47Cc7B21624a5064F9FBA",
"decimals": 4,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/userscript.user.js b/userscript.user.js @@ -795,6 +795,8 @@ var $$IMU_EXPORT$$;
return raw_request_do(data);
};
+ } else {
+ console_warn("Unable to initialize do_request, most functions will likely fail");
}
var get_cookies = null;
@@ -8330,7 +8332,7 @@ var $$IMU_EXPORT$$;
};
common_functions.get_tiktok_u... | 7 |
diff --git a/articles/policies/rate-limits.md b/articles/policies/rate-limits.md @@ -59,7 +59,9 @@ If you are using an API endpoint **not** listed below and you receive rate limit
### Management API v2
-Please note that there is a 50 requests per second limit on all [Management API v2](/api/management/v2) calls per ten... | 0 |
diff --git a/includes/Core/Modules/REST_Dashboard_Sharing_Controller.php b/includes/Core/Modules/REST_Dashboard_Sharing_Controller.php @@ -122,7 +122,7 @@ class REST_Dashboard_Sharing_Controller {
),
array(
'methods' => WP_REST_Server::DELETABLE,
- 'callback' => function ( WP_REST_Request $request ) {
+ 'callback' => f... | 2 |
diff --git a/scenes/gunroom.scn b/scenes/gunroom.scn 4
]
},
+ {
+ "start_url": "https://webaverse.github.io/eyeblaster/",
+ "position": [
+ 0,
+ 0,
+ 0
+ ]
+ },
{
"position": [
1,
| 0 |
diff --git a/js/control/Profile.js b/js/control/Profile.js @@ -86,6 +86,7 @@ BR.Profile = L.Evented.extend({
callback: L.bind(function(err, profileId, profileText) {
$(button).blur();
if (!err) {
+ this.profileName = profileId;
this.cache[profileId] = profileText;
if (!this.saveWarningShown) {
@@ -127,6 +128,7 @@ BR.Pr... | 12 |
diff --git a/index.d.ts b/index.d.ts @@ -742,13 +742,18 @@ export class Villager extends (EventEmitter as new () => TypedEmitter<Conditiona
}
export interface VillagerTrade {
- firstInput: Item
- output: Item
- hasSecondItem: boolean
- secondaryInput: Item | null
- disabled: boolean
- tooluses: number
- maxTradeuses: n... | 3 |
diff --git a/bin/imbapack b/bin/imbapack var path = require('path');
var fs = require('fs');
-var dir = path.join(path.dirname(fs.realpathSync(__filename)), '../');
+var dir = path.join(path.dirname(fs.realpathSync(__filename)), '..',path.sep);
var enableDebugLog = false;
@@ -13,7 +13,7 @@ if(require.main !== module){
... | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.