code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/assets/js/modules/adsense/setup/setup-main.js b/assets/js/modules/adsense/setup/setup-main.js @@ -129,7 +129,7 @@ export default function SetupMain() {
// Update account status setting on-the-fly.
useEffect( () => {
- // Don't do anything if account status cannot be determined (because of parts .
+ // Don'... | 1 |
diff --git a/articles/email/templates.md b/articles/email/templates.md @@ -48,7 +48,6 @@ You can access the following common variables when using Liquid Syntax in the **
* `friendly_name`
* `support_email`
* `support_url`
- * `home_url`
Variables are referenced using the `{{ variable_name }}` syntax in Liquid. E.g.:
| 2 |
diff --git a/Source/DataSources/KmlTourWait.js b/Source/DataSources/KmlTourWait.js @@ -8,6 +8,7 @@ import defined from "../Core/defined.js";
* @param {Number} duration entry duration
*
* @see KmlTour
+ * @see KmlTourFlyTo
*/
function KmlTourWait(duration) {
this.type = "KmlTourWait";
| 3 |
diff --git a/themes/vue/layout/partials/ecosystem_dropdown.ejs b/themes/vue/layout/partials/ecosystem_dropdown.ejs <li>
<ul>
<li><a href="https://github.com/vuejs/vue-devtools" class="nav-link" target="_blank">Devtools</a></li>
- <li><a href="https://vuejs-templates.github.io/webpack" class="nav-link" target="_blank">W... | 14 |
diff --git a/lib/api-adresse.js b/lib/api-adresse.js @@ -24,7 +24,7 @@ async function _fetch(url) {
export function search(args) {
const {q, limit, lng, lat} = args
- let url = `${API_ADRESSE}/search/?q=${encodeURIComponent(q)}&limit=10`
+ let url = `${API_ADRESSE}/search/?q=${encodeURIComponent(q)}`
if (lng && lat) {
... | 2 |
diff --git a/client/src/components/client/soundController.js b/client/src/components/client/soundController.js @@ -30,6 +30,10 @@ const CANCEL_ALL_SOUNDS = gql`
`;
class SoundController extends Component {
+ shouldComponentUpdate(prevProps) {
+ if (prevProps.clientId !== this.props.clientId) return true;
+ return false... | 1 |
diff --git a/articles/api/management/v2/tokens-flows.md b/articles/api/management/v2/tokens-flows.md @@ -42,7 +42,7 @@ With the previous flow the tokens never expired. With the new flow all Managemen
#### Why this changed
-Having a token that never expires can be very risky, in case an attacher gets hold of it. If the ... | 1 |
diff --git a/platform/base/core/src/main/java/com/peregrine/render/impl/ReferenceListerService.java b/platform/base/core/src/main/java/com/peregrine/render/impl/ReferenceListerService.java @@ -37,6 +37,7 @@ import com.peregrine.reference.Reference;
import com.peregrine.reference.ReferenceLister;
import java.util.*;
+im... | 4 |
diff --git a/polyfills/Event/config.json b/polyfills/Event/config.json "default-3.4",
"default-3.5",
"default-3.6",
- "default",
- "EventTarget.prototype.addEventListener",
- "EventTarget.prototype.removeEventListener",
- "EventTarget.prototype.dispatchEvent"
+ "default"
],
"browsers": {
"firefox": "6 - 10",
| 2 |
diff --git a/generators/server/templates/src/main/java/package/config/DefaultProfileUtil.java.ejs b/generators/server/templates/src/main/java/package/config/DefaultProfileUtil.java.ejs @@ -52,18 +52,4 @@ public final class DefaultProfileUtil {
defProperties.put(SPRING_PROFILE_DEFAULT, JHipsterConstants.SPRING_PROFILE_D... | 2 |
diff --git a/apps.json b/apps.json "name": "BangleRun",
"shortName": "BangleRun",
"icon": "banglerun.png",
- "version": "0.05",
+ "version": "0.06",
"interface": "interface.html",
"description": "An app for running sessions. Displays info and logs your run for later viewing.",
"tags": "run,running,fitness,outdoors",
| 3 |
diff --git a/components/lib/divider/Divider.spec.js b/components/lib/divider/Divider.spec.js @@ -3,12 +3,12 @@ import { render } from '@testing-library/react';
import { Divider } from './Divider';
describe('Divider', () => {
- test('when tpe has not any property it returns with default class', () => {
+ test('when comp... | 7 |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -14,7 +14,6 @@ jobs:
- run: npm ci
- run: npm run build
- run: 'npm run release'
- if: startsWith(github.ref, 'refs/tags/')
env:
CLIENT_ID: ${{ secrets.PUBLISHER_CHROME_CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.PUBLISHER_CHROME_CLIENT_SECRET }}... | 2 |
diff --git a/documentation/assertions/any/to-satisfy.md b/documentation/assertions/any/to-satisfy.md @@ -45,7 +45,7 @@ expected [ 0, 1, 2 ] to satisfy [ 0, 1 ]
```
In order to make statements about a subset of the available indices, an object
-specification on the right hand side can mention specific indexes as keys wh... | 1 |
diff --git a/src/components/accounts/SetRecoveryInfoForm.js b/src/components/accounts/SetRecoveryInfoForm.js @@ -14,22 +14,17 @@ const RecoveryInfoForm = styled(Form)`
height: 64px;
border: 4px solid #f8f8f8;
padding: 0 0 0 20px;
-
font-size: 18px;
color: #4a4f54;
font-weight: 400;
background: 0;
-
position: relative;
... | 12 |
diff --git a/materials.js b/materials.js @@ -38,18 +38,31 @@ const appendMain = (shaderText, postfixLine) => {
}
`; */
-const formatVertexShader = vertexShader => `\
+// memoize a function which takes a string and returns a string
+const _memoize = fn => {
+ const cache = new Map();
+ return s => {
+ let result = cache... | 0 |
diff --git a/kitty-items-js/src/workers/base-event-handler.ts b/kitty-items-js/src/workers/base-event-handler.ts @@ -3,6 +3,7 @@ import { FlowService } from "../services/flow";
import * as fcl from "@onflow/fcl";
import { send } from "@onflow/sdk-send";
import { getEvents } from "@onflow/sdk-build-get-events";
+import ... | 0 |
diff --git a/userscript.user.js b/userscript.user.js @@ -25935,7 +25935,9 @@ var $$IMU_EXPORT$$;
// http://a3.mzstatic.com/us/r30/Music5/v4/2e/0d/6d/2e0d6d8f-bd38-9240-b150-0e989f00374e/cover170x170.jpeg
// http://a4.mzstatic.com/us/r30/Music62/v4/fe/61/54/fe6154f6-b064-d788-d114-4b544def3d30/cover1400x1400.jpeg
// add... | 1 |
diff --git a/test/red/api/editor/locales_spec.js b/test/red/api/editor/locales_spec.js @@ -71,49 +71,49 @@ describe("api/editor/locales", function() {
});
});
- describe('get all node resource catalogs',function() {
- var app;
- before(function() {
- // bit of a mess of internal workings
- sinon.stub(i18n,'catalog',fun... | 2 |
diff --git a/src/util.js b/src/util.js @@ -702,7 +702,7 @@ var _ = $.extend(Mavo, {
str.trim().match(/(?:\\[,;]|[^,;])+/g)?.forEach(option => {
if (option) {
option = option.trim().replace(/\\([,;])/g, "$1");
- var pair = option.match(/^\s*((?:\\:|[^:])+?)\s*:\s*(.+)$/);
+ var pair = option.match(/^\s*((?:\\:|[^:])*?)\... | 11 |
diff --git a/tests/beaker_compat_test.py b/tests/beaker_compat_test.py @@ -16,7 +16,7 @@ def _test_cookie(filename, header, uid, cases):
from sirepo import sr_unit
def _before_request(fc):
- target = sr_unit.server.cfg.db_dir.join(
+ target = sr_unit.server.app.sirepo_db_dir.join(
'beaker', 'container_file', filename[0... | 4 |
diff --git a/less/gameboard/right-pane.less b/less/gameboard/right-pane.less position: absolute;
display: flex;
justify-content: space-between;
- align-items: end;
+ align-items: flex-end;
height: 100%;
flex-direction: column;
min-width: 312px;
justify-content: end;
align-items: center;
padding: 5px;
+ margin: 0;
+ top... | 5 |
diff --git a/articles/connections/database/password-options.md b/articles/connections/database/password-options.md @@ -46,3 +46,41 @@ Enabling this option will force a user that is setting their password to not set
* The first part of the user's email will also be checked - `firstpart`@example.com
For example, if the u... | 0 |
diff --git a/site/jms-client.md b/site/jms-client.md @@ -204,7 +204,7 @@ The following table lists all of the attributes/properties that are available.
| `channelsQos` | No | [QoS setting](https://www.rabbitmq.com/consumer-prefetch.html) for channels created by the connection factory. Default is -1 (no QoS). |
| `termi... | 10 |
diff --git a/src/components/Control.jsx b/src/components/Control.jsx @@ -9,7 +9,7 @@ const ammoTypes = [...new Set(ammoData.data.map((ammoData) => {
function Control(props) {
const [connectionText, setConnectionText] = useState('Connect');
- const [connectID, setConnectID] = useState();
+ const [connectID, setConnectID... | 12 |
diff --git a/src/graphql/__tests__/setViewed.js b/src/graphql/__tests__/setViewed.js -jest.mock("../lineClient");
+jest.mock('../lineClient');
-import Client from "src/database/mongoClient";
-import UserArticleLink from "src/database/models/userArticleLink";
-import MockDate from "mockdate";
-import { gql } from "../te... | 1 |
diff --git a/src/Appwrite/Usage/Calculators/TimeSeries.php b/src/Appwrite/Usage/Calculators/TimeSeries.php @@ -491,7 +491,9 @@ class TimeSeries extends Calculator
}
$value = (!empty($point['value'])) ? $point['value'] : 0;
-
+ if(empty($point['projectInternalId'] ?? null)) {
+ return;
+ }
$this->createOrUpdateMetric(
$... | 8 |
diff --git a/userscript.user.js b/userscript.user.js @@ -25630,8 +25630,6 @@ var $$IMU_EXPORT$$;
(domain_nowww === "geeksofdoom.com" && string_indexof(src, "/img/") >= 0) ||
// http://newsimages.fashionmodeldirectory.com/content/2018/06/july-cover2-392x400.jpg
domain === "newsimages.fashionmodeldirectory.com" ||
- // h... | 7 |
diff --git a/README.md b/README.md Visit [gosparta.io](https://gosparta.io) for complete documentation.
+## Version Info
+
+This is the breaking `v2` version of Sparta. The previous version is available at at the `/v1` branch.
+
## Overview
Sparta takes a set of _golang_ functions and automatically provisions them in
@... | 0 |
diff --git a/userscript.user.js b/userscript.user.js @@ -15692,10 +15692,22 @@ var $$IMU_EXPORT$$;
// http://ilarge.lisimg.com/image/6915143/0full.jpg
// http://iv1.lisimg.com/image/2916057/516full-rachel-riley.jpg
// http://ilarge.lisimg.com/image/2916057/0full.jpg
- return src
+ obj = {
+ url: src
+ };
+
+ id = src.m... | 7 |
diff --git a/runtime.js b/runtime.js @@ -356,7 +356,8 @@ const _makeAppUrl = appId => {
};
const _loadScript = async file => {
const appId = ++appIds;
- const mesh = makeIconMesh();
+ const mesh = new THREE.Object3D(); // makeIconMesh();
+ mesh.geometry = new THREE.BufferGeometry();
mesh.geometry.boundingBox = new THRE... | 2 |
diff --git a/scenes/shadows.scn b/scenes/shadows.scn "start_url": "https://webaverse.github.io/mirror/",
"dynamic": true
},
+ {
+ "position": [
+ 0,
+ 0,
+ 0
+ ],
+ "quaternion": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "components": [
+ {
+ "key": "line",
+ "value": [
+ [92.5, 0, -33],
+ [19.5, -4, 59.5]
+ ]
+ },
+ {
+ "key": "bou... | 0 |
diff --git a/token-metadata/0x420Ab548B18911717Ed7C4CCBF46371EA758458C/metadata.json b/token-metadata/0x420Ab548B18911717Ed7C4CCBF46371EA758458C/metadata.json "symbol": "NOODLE",
"address": "0x420Ab548B18911717Ed7C4CCBF46371EA758458C",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIE... | 3 |
diff --git a/spec/requests/api/imports_spec.rb b/spec/requests/api/imports_spec.rb @@ -146,10 +146,9 @@ describe "Imports API" do
table.should have_required_indexes_and_triggers
table.should have_no_invalid_the_geom
table.geometry_types.should_not be_blank
- end
- DataImport.count.should == 1
- Map.count.should == 1
+ ... | 2 |
diff --git a/test/useTranslation.ready.spec.js b/test/useTranslation.ready.spec.js @@ -93,6 +93,10 @@ describe('useTranslation', () => {
it('should ignore suspense if set useSuspense to false', () => {
const instance2 = { ...instance };
instance2.options.react = { useSuspense: false };
+ instance2.services.backendConne... | 1 |
diff --git a/sirepo/package_data/static/js/ml.js b/sirepo/package_data/static/js/ml.js @@ -1095,7 +1095,7 @@ SIREPO.app.directive('columnSelector', function(appState, mlService, panelState,
const w = $('div[data-column-selector] .sr-input-warning').text('').hide();
const msg = 'Select at least 2 columns';
b.setCustomVa... | 8 |
diff --git a/src/lib/notifications/backgroundFetch.native.js b/src/lib/notifications/backgroundFetch.native.js @@ -5,6 +5,7 @@ import { useCallback, useEffect } from 'react'
import logger from '../logger/js-logger'
import { useUserStorage, useWallet } from '../wallet/GoodWalletProvider'
import { fireEvent, NOTIFICATION... | 0 |
diff --git a/public/assets/images/logos/helm-v3.svg b/public/assets/images/logos/helm-v3.svg <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 39.90942 34.5338669" style="enable-background:new 0 0 39.90942 34.5338669;" xml:space="p... | 2 |
diff --git a/packages/node_modules/@node-red/nodes/core/logic/10-switch.html b/packages/node_modules/@node-red/nodes/core/logic/10-switch.html resizeRule(container);
var type = selectField.val();
- try {
+ if (valueField){
valueField.typedInput('hide');
- } catch(e){}
- try {
+ }
+ if (expValueField){
expValueField.typ... | 2 |
diff --git a/src/components/button/templates/config.js b/src/components/button/templates/config.js @@ -87,7 +87,7 @@ export const BUTTON_CONFIG : ButtonConfig = {
maximumVerticalSize: BUTTON_SIZE.LARGE,
minHorizontalButtons: 1,
- minVerticalButtons: 2,
+ minVerticalButtons: 1,
maxHorizontalButtons: 2,
maxVerticalButton... | 11 |
diff --git a/spec/requests/application_controller_spec.rb b/spec/requests/application_controller_spec.rb @@ -50,7 +50,7 @@ describe ApplicationController do
stub_load_common_data
get dashboard_url, {}, authentication_headers(@user.email)
response.status.should == 200
- response.body.should_not include("Login to Carto")... | 10 |
diff --git a/docs/docs/00.md b/docs/docs/00.md @@ -60,4 +60,8 @@ usersList:
name: CircleHD
img: https://www.circlehd.com/apple-touch-icon.png
url: https://www.circlehd.com/
+ - germantech-java:
+ name: GermanTech Java Jobs
+ img: https://static.germantechjobs.de/pictures/germantech-java-jobs.svg
+ url: https://germante... | 0 |
diff --git a/SearchbarNavImprovements.user.js b/SearchbarNavImprovements.user.js // @description Searchbar & Nav Improvements. Advanced search helper when search box is focused. Bookmark any search for reuse (stored locally, per-site).
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author @samliew
-// @... | 2 |
diff --git a/token-metadata/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490/metadata.json b/token-metadata/0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490/metadata.json "symbol": "XCM",
"address": "0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/.travis.yml b/.travis.yml @@ -37,6 +37,7 @@ install:
before_script:
- export TSLINT_FLAGS='-c ./tslint_ci.json'
- export LONG_RUNNING_ENABLED=1
+- export ETHEREUM_ENABLED=1
- ./packages/iov-ethereum/startGanache.sh
# Make variables and function from Travis available in our script
@@ -60,7 +61,7 @@ before_s... | 12 |
diff --git a/core/connection.js b/core/connection.js @@ -479,59 +479,6 @@ Blockly.Connection.connectReciprocally_ = function(first, second) {
second.targetConnection = first;
};
-/**
- * Adds color if this is a type varible connection
- * Sorin
- */
-Blockly.Connection.prototype.addColor = function() {
- if (this.color... | 2 |
diff --git a/src/Table.js b/src/Table.js @@ -7,22 +7,6 @@ import Model from './Model.js'
const IV_LENGTH = 16
-/*
- Item schema to create uniqueness records. Implements unique fields.
- */
-const UniqueSchema = {
- pk: { value: '_unique:${pk}' },
- sk: { value: '_unique:' },
-}
-
-/*
- Schema for the low level API
- */... | 1 |
diff --git a/token-metadata/0x26B3038a7Fc10b36c426846a9086Ef87328dA702/metadata.json b/token-metadata/0x26B3038a7Fc10b36c426846a9086Ef87328dA702/metadata.json "symbol": "YFT",
"address": "0x26B3038a7Fc10b36c426846a9086Ef87328dA702",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/page/home/report/ReportActionCompose.js b/src/page/home/report/ReportActionCompose.js @@ -32,10 +32,28 @@ class ReportActionCompose extends React.Component {
constructor(props) {
super(props);
- this.updateComment = _.debounce(this.updateComment.bind(this), 1000, false);
+ this.updateComment = this.upd... | 4 |
diff --git a/test/browser/components.js b/test/browser/components.js @@ -273,7 +273,7 @@ describe('Components', () => {
sideEffect.resetHistory();
Comp.prototype.componentWillMount.resetHistory();
bad.setState({ alt: true });
- bad.forceUpdate();
+ rerender();
expect(scratch.textContent, 'new component without key re-r... | 14 |
diff --git a/scripts/test.js b/scripts/test.js @@ -23,4 +23,8 @@ if (!process.env.CI && argv.indexOf('--coverage') < 0) {
argv.push('--watch')
}
+// Optimize for CI
+// https://github.com/facebook/jest/issues/3855#issuecomment-309521581
+argv.push('--maxWorkers=4')
+
jest.run(argv)
| 7 |
diff --git a/src/models/log.js b/src/models/log.js @@ -111,10 +111,11 @@ Log.getOldLogs = function(api, app_id, before, after, search) {
if(search) {
query.filter = search;
}
+ const url = Log.getHttpLogUrl(app_id);
var s_res = Bacon.fromNodeCallback(request, {
- agent: new (require("https").Agent)({ keepAlive: true })... | 11 |
diff --git a/test/jasmine/tests/lib_increment_test.js b/test/jasmine/tests/lib_increment_test.js @@ -768,4 +768,12 @@ describe('increment', function() {
examine({ start: 12345, step: 0.01, expected: [12345.01, 12345.02, 12345.03] });
examine({ start: 12345, step: 0.1, expected: [12345.1, 12345.2, 12345.3] });
});
+
+ i... | 0 |
diff --git a/docs/src/layouts/Layout.vue b/docs/src/layouts/Layout.vue @@ -245,6 +245,9 @@ export default {
) {
evt.preventDefault()
this.search = ''
+ if (!this.leftDrawerState) {
+ this.leftDrawerState = true
+ }
setTimeout(() => {
this.$refs.docAlgolia.focus()
})
| 1 |
diff --git a/updates/2017-04-28.yml b/updates/2017-04-28.yml @@ -7,4 +7,4 @@ added:
- api-auth
- api
description: |
- A [new tutorial](/api-auth/tutorials/represent-multiple-apis) was added showing how to represent multiple APIs using a single Auth0 API.
+ A [new tutorial](https://auth0.com/docs/api-auth/tutorials/repr... | 0 |
diff --git a/app/components/PredictionMarkets/PredictionMarketsOverviewTable.jsx b/app/components/PredictionMarkets/PredictionMarketsOverviewTable.jsx @@ -41,7 +41,7 @@ class PredictionMarketsOverviewTable extends Component {
this.props.currentAccount.get("id") === id;
return [
{
- title: "#",
+ title: counterpart.tran... | 10 |
diff --git a/common/lib/util/eventemitter.ts b/common/lib/util/eventemitter.ts @@ -133,7 +133,7 @@ class EventEmitter {
const [firstArg, secondArg] = args;
let listener: Function | null = null;
let event: unknown = null;
- if(args.length == 1) {
+ if(args.length === 1 || !secondArg) {
if (typeof firstArg === 'function'... | 1 |
diff --git a/lib/connection/process/remote.js b/lib/connection/process/remote.js @@ -61,10 +61,12 @@ export function withRemoteConfig (f) {
}
function maybe_add_agent (conf) {
- if (conf && !conf.agent && atom.config.get('julia-client.remoteOptions.agentAuth')) {
+ if (conf && atom.config.get('julia-client.remoteOption... | 11 |
diff --git a/index.d.ts b/index.d.ts @@ -261,8 +261,8 @@ export class Axios {
}
export interface AxiosInstance extends Axios {
- (config: AxiosRequestConfig): AxiosPromise;
- (url: string, config?: AxiosRequestConfig): AxiosPromise;
+ <T = any, R = AxiosResponse<T>, D = any>(config: AxiosRequestConfig<D>): AxiosPromise... | 11 |
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -39,6 +39,7 @@ import {getHeight} from './avatars/util.mjs';
import performanceTracker from './performance-tracker.js';
import debug from './debug.js';
import * as sceneCruncher from './scene-cruncher.js';
+import * as scenePreviewer from './scene-previewer.js... | 0 |
diff --git a/editor.js b/editor.js @@ -2888,6 +2888,12 @@ sacks3.vrm`,
.setFromAxisAngle(new THREE.Vector3(0, 1, 0), -Math.PI/2),
contentId: 'https://avaer.github.io/sakura/manifest.json',
},
+ {
+ position: new THREE.Vector3(1, 3, -12),
+ quaternion: new THREE.Quaternion()
+ /* .setFromAxisAngle(new THREE.Vector3(0, 1... | 0 |
diff --git a/src/plots/plots.js b/src/plots/plots.js @@ -16,6 +16,7 @@ var Plotly = require('../plotly');
var Registry = require('../registry');
var Lib = require('../lib');
var Color = require('../components/color');
+var BADNUM = require('../constants/numerical').BADNUM;
var plots = module.exports = {};
@@ -2013,7 +2... | 14 |
diff --git a/framer/TextLayer.coffee b/framer/TextLayer.coffee @@ -41,7 +41,7 @@ class exports.TextLayer extends Layer
_.defaults options, options.textStyle,
backgroundColor: "transparent"
- html: "Hello World"
+ text: "Hello World"
color: "#888"
fontSize: 40
fontWeight: 400
| 12 |
diff --git a/src/auth.ts b/src/auth.ts @@ -96,8 +96,6 @@ export async function ownerMiddleware(req, res, next) {
const x_transport_token =
req.headers['x-transport-token'] || req.cookies['x-transport-token']
- console.log('Transport toke:', x_transport_token)
-
// default assign token to x-user-token
let token = x_user... | 2 |
diff --git a/spec/services/carto/user_metadata_export_service_spec.rb b/spec/services/carto/user_metadata_export_service_spec.rb @@ -261,7 +261,7 @@ describe Carto::UserMetadataExportService do
end
end
- EXCLUDED_USER_META_DATE_FIELDS = ['created_at', 'updated_at'].freeze
+ EXCLUDED_USER_META_DATE_FIELDS = ['created_at... | 8 |
diff --git a/app/eosTokens.js b/app/eosTokens.js // Provide a list of EOS tokens that are available
//
-const eosTokens = ['eosio.token', 'eosadddddddd', 'eosdactokens', 'gyztomjugage'];
+const eosTokens = ['eosio.token', 'eosadddddddd', 'eosdactokens', 'gyztomjugage', 'eoxeoxeoxeox'];
export default eosTokens;
| 0 |
diff --git a/src/lib/core.js b/src/lib/core.js @@ -4198,11 +4198,28 @@ export default function (context, pluginCallButtons, plugins, lang, options) {
core.selectComponent(nextEl.querySelector('iframe'), 'video');
}
}
-
break;
}
}
+ if (util.isListCell(formatEl) && util.isList(rangeEl) && (util.isListCell(rangeEl.parent... | 3 |
diff --git a/compare/output/index_bundle.js b/compare/output/index_bundle.js @@ -4830,6 +4830,13 @@ var showScrubberRefImage = exports.showScrubberRefImage = function showScrubberR
};
};
+var showScrubberDiffImage = exports.showScrubberDiffImage = function showScrubberDiffImage(value) {
+ return {
+ type: 'SHOW_SCRUBBE... | 3 |
diff --git a/models/users.js b/models/users.js @@ -260,7 +260,7 @@ Users.attachSchema(
Users.allow({
update(userId) {
const user = Users.findOne(userId);
- return user && Meteor.user().isAdmin;
+ return user; // && Meteor.user().isAdmin; // GitHub issue #2590
},
remove(userId, doc) {
const adminsNumber = Users.find({ i... | 1 |
diff --git a/CHANGELOG.md b/CHANGELOG.md --------------------------------------------------
<a name="0.14.7"></a>
-# [0.14.7](https://github.com/moleculerjs/moleculer/compare/v0.14.6...v0.14.7) (2020-05-??)
+# [0.14.7](https://github.com/moleculerjs/moleculer/compare/v0.14.6...v0.14.7) (2020-05-22)
## New Discoverer mo... | 12 |
diff --git a/backend/mapservice/Models/Config/WMSConfig.cs b/backend/mapservice/Models/Config/WMSConfig.cs @@ -73,7 +73,7 @@ namespace MapService.Models.Config
public string searchUrl { get; set; }
- public double ratio { get; set; }
+ public double customRatio { get; set; }
public bool hidpi { get; set; } = true;
| 10 |
diff --git a/lib/views/github-tab-view.js b/lib/views/github-tab-view.js @@ -81,7 +81,9 @@ export default class GitHubTabView extends React.Component {
// TODO: display a view that lets you create a repository on GitHub
return (
<div className="github-GitHub-noRemotes">
- This repository does not have any remotes hoste... | 4 |
diff --git a/includes/Modules/Analytics_4.php b/includes/Modules/Analytics_4.php @@ -471,17 +471,17 @@ final class Analytics_4 extends Module
array( 'status' => 400 )
);
}
- if ( ! isset( $data['containerID'] ) ) {
+ if ( ! isset( $data['internalContainerID'] ) ) {
return new WP_Error(
'missing_required_param',
/* tran... | 10 |
diff --git a/src/print/VectorEncoder.js b/src/print/VectorEncoder.js @@ -307,45 +307,17 @@ VectorEncoder.prototype.encodeVectorStylePoint = function (symbolizers, imageSty
}
} else if (imageStyle instanceof olStyleRegularShape) {
/**
- * Mapfish Print does not support image defined with ol.style.RegularShape.
- * As a ... | 4 |
diff --git a/_data/conferences.yml b/_data/conferences.yml end: 2022-05-05
hindex: 286
sub: ML
- note: Mandatory abstract deadline on September 11, 2022. More info <a href='https://iclr.cc/Conferences/2023/CallForPapers'>here</a>.
+ note: Mandatory abstract deadline on September 21, 2022. More info <a href='https://icl... | 1 |
diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js @@ -3219,7 +3219,7 @@ axes.drawGrid = function(gd, ax, opts) {
var hasMinor = ax.minor && ax.minor.showgrid;
var minorVals = hasMinor ? opts.vals.filter(function(d) { return d.minor; }) : [];
- var majorVals = ax.showgrid ? opts.vals.filter(function... | 2 |
diff --git a/articles/hooks/extensibility-points/pre-user-registration.md b/articles/hooks/extensibility-points/pre-user-registration.md @@ -9,7 +9,7 @@ beta: true
For [Database Connections](/connections/database), the `pre-user-registration` extensibility point allows you to add custom `app_metadata` or `user_metadata... | 0 |
diff --git a/src/components/core/breakpoints/setBreakpoint.js b/src/components/core/breakpoints/setBreakpoint.js @@ -21,7 +21,7 @@ function getBreakpoint(breakpoints) {
export default function () {
const swiper = this;
- const { activeIndex, loopedSlides, params } = swiper;
+ const { activeIndex, loopedSlides = 0, para... | 12 |
diff --git a/src/webroutes/setup/get.js b/src/webroutes/setup/get.js const modulename = 'WebServer:SetupGet';
const path = require('path');
const { dir, log, logOk, logWarn, logError } = require('../../extras/console')(modulename);
-
+const { engineVersion } = require('../../extras/deployer');
/**
* Returns the output ... | 3 |
diff --git a/src/components/Story/StoryPreview.js b/src/components/Story/StoryPreview.js @@ -37,10 +37,7 @@ const StoryPreview = ({ post }) => {
embed: () => embeds && embeds[0] && <PostFeedEmbed key="embed" embed={embeds[0]} />,
- image: () => (
- <Link key="image" to={post.url}>
- <img alt="post" key={imagePath} src=... | 2 |
diff --git a/ui/build/build.web-types.js b/ui/build/build.web-types.js @@ -37,7 +37,34 @@ module.exports.generate = function (data) {
html: {
'types-syntax': 'typescript',
tags: data.components.map(({ api: { events, props, scopedSlots, slots }, name }) => {
- let result = {
+ let slotTypes = []
+ if (slots) {
+ Object.... | 3 |
diff --git a/doc/api.md b/doc/api.md - [API](#api)
- [Enums](#enums)
- - [mineflayer.data](#mineflayerdata)
- - [mineflayer.blocks](#mineflayerblocks)
- - [mineflayer.items](#mineflayeritems)
- - [mineflayer.materials](#mineflayermaterials)
- - [mineflayer.recipes](#mineflayerrecipes)
- - [mineflayer.instruments](#mine... | 3 |
diff --git a/src/template.js b/src/template.js */
-// Counter used by registerCustomElement.
-let registeredClassCounter = 0;
+// Used by registerCustomElement.
+const mapBaseTagToCount = new Map();
/**
@@ -142,9 +142,7 @@ export function html(strings, ...substitutions) {
* generated/minified code), the tag base will b... | 4 |
diff --git a/character-sfx.js b/character-sfx.js @@ -19,8 +19,8 @@ import {
// loadAudioBuffer,
} from './util.js';
-let localVector = new THREE.Vector3();
-const localVector2D = new THREE.Vector2()
+const localVector = new THREE.Vector3();
+
// HACK: this is used to dynamically control the step offset for a particular... | 2 |
diff --git a/ios/CoopCycle.xcodeproj/project.pbxproj b/ios/CoopCycle.xcodeproj/project.pbxproj "$(SRCROOT)/../node_modules/react-native-locale-detector/RNI18n",
);
INFOPLIST_FILE = CoopCycleTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 10.0;
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited... | 12 |
diff --git a/scss/typography/_heading.scss b/scss/typography/_heading.scss @@ -13,14 +13,14 @@ $siimple-heading-margin-bottom: 0.5em;
$siimple-heading-font-weight: bold;
$siimple-heading-sizes: (
"1": ("size": 40px, "line-height": 51px, "margin-bottom": 20px, "margin-top": 30px),
- "2": ("size": 32px, "line-heignt": 40... | 1 |
diff --git a/README.md b/README.md # fullNodePlus
+
+## Add Wallet:
+
+POST `/wallet`
+
+BODY:
+```
+{
+ "name": "WalletName"
+}
+```
+
+## Get Wallet:
+
+GET `/wallet/:walletId`
+
+## Import Addresses:
+
+POST `/wallet/:walletId`
+
+BODY: raw jsonl wallet file of the form
+{"address": "bItCoInAddReSSHeRe"}
+...
+
+## ... | 3 |
diff --git a/scenes/street.scn b/scenes/street.scn "quaternion": [0, 0.7071067811865475, 0, 0.7071067811865476],
"start_url": "https://webaverse.github.io/helm/"
},
+ {
+ "position": [-30, 0, -30],
+ "quaternion": [0, 0, 0, 1],
+ "start_url": "https://webaverse.github.io/plants/"
+ },
{
"position": [
-95,
| 0 |
diff --git a/formula/index.js b/formula/index.js @@ -1954,6 +1954,8 @@ exports.evaluate = function (opts, callback) {
return setFatalError("current value is not decimal: " + value, cb, false);
if (!Decimal.isDecimal(res))
return setFatalError("rhs is not decimal: " + res, cb, false);
+ if ((assignment_op === '+=' || as... | 12 |
diff --git a/src/commands/utility/ArticleCommand.js b/src/commands/utility/ArticleCommand.js @@ -98,19 +98,19 @@ class ArticleCommand extends Command {
turndown.addRule('headings', {
filter: ['h1','h2','h3','h4','h5','h6'],
replacement: function (content) {
- return '**' + content + '**\n';
+ return '**' + content.repl... | 7 |
diff --git a/avatar-spriter.js b/avatar-spriter.js @@ -1616,7 +1616,7 @@ const _renderSpriteImages = skinnedVrm => {
// pre-run the animation one cycle first, to stabilize the hair physics
let now = 0;
const startAngleIndex = angleIndex;
- localRig.springBoneManager.reset();
+ // localRig.springBoneManager.reset();
{
c... | 2 |
diff --git a/protocols/delegate-manager/contracts/DelegateManager.sol b/protocols/delegate-manager/contracts/DelegateManager.sol @@ -22,10 +22,9 @@ import "@airswap/swap/contracts/interfaces/ISwap.sol";
import "@airswap/delegate-factory/contracts/interfaces/IDelegateFactory.sol";
import "@airswap/delegate/contracts/int... | 2 |
diff --git a/includes/Modules/Site_Verification.php b/includes/Modules/Site_Verification.php @@ -52,9 +52,9 @@ final class Site_Verification extends Module implements Module_With_Scopes {
const VERIFICATION_TYPE_FILE = 'FILE';
/**
- * Verification meta tag cache option.
+ * Verification meta tag cache key.
*/
- const O... | 14 |
diff --git a/src/lib/analytics/analytics.js b/src/lib/analytics/analytics.js @@ -18,6 +18,7 @@ export const initAnalytics = async (goodWallet: GoodWallet, userStorage: UserSto
environment: Config.env,
person: {
id: emailOrId,
+ identifier,
},
},
})
| 0 |
diff --git a/token-metadata/0x01FA555c97D7958Fa6f771f3BbD5CCD508f81e22/metadata.json b/token-metadata/0x01FA555c97D7958Fa6f771f3BbD5CCD508f81e22/metadata.json "symbol": "CVL",
"address": "0x01FA555c97D7958Fa6f771f3BbD5CCD508f81e22",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/static/js/html10n.js b/src/static/js/html10n.js @@ -852,6 +852,7 @@ window.html10n = (function(window, document, undefined) {
, "alt": 1
, "textContent": 1
, "value": 1
+ , "placeholder": 1
}
if (index > 0 && str.id.substr(index + 1) in attrList) { // an attribute has been specified
prop = str.id.subst... | 11 |
diff --git a/app/views/audit.scala.html b/app/views/audit.scala.html <p>@Html(Messages("audit.tutorial.welcome.1"))</p>
<table style="width:100%;">
<tbody><tr>
- <th style="text-align:center; width:25%">@Html(Messages("audit.tutorial.photo.1"))</th>
- <th style="text-align:center; width:25%">@Html(Messages("audit.tutor... | 3 |
diff --git a/src/store/factory/client.js b/src/store/factory/client.js @@ -100,7 +100,7 @@ function createEthereumClient (
if (walletType === 'rsk_ledger') {
coinType = legacyCoinType
- } else if (ethereumNetwork.name === 'rsk_mainnet' || ethereumNetwork.name === 'rsk_testnet') {
+ } else if (ethereumNetwork.name === '... | 13 |
diff --git a/appengine/accessible/js/blocks.js b/appengine/accessible/js/blocks.js @@ -45,37 +45,15 @@ Music.Blocks.NOTE_OPTIONS = [
["B4", "59"]
];
-var MUSIC_DUMMY_TOOLTIP = 'Dummy tooltip';
-var MUSIC_DUMMY_HELPURL = 'Dummy help URL';
-
-// Extensions to Blockly's language and JavaScript generator.
-
-Blockly.Blocks... | 2 |
diff --git a/src/js/extensions/sort.js b/src/js/extensions/sort.js sortlist:[], //holder current sort
//initialize column header for sorting
- initializeColumnHeader:function(column, content){
+ initializeColumn:function(column, content){
var self = this;
column.element.addClass("tabulator-sortable");
| 10 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.